generated from ricardo/MVCLogin
11 lines
285 B
C#
11 lines
285 B
C#
using Postall.Domain.Dtos;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Postall.Models
|
|
{
|
|
public class ChannelVideosViewModel
|
|
{
|
|
public ChannelResponse Channel { get; set; }
|
|
public List<VideoViewModel> Videos { get; set; } = new List<VideoViewModel>();
|
|
}
|
|
} |