initial load
This commit is contained in:
16
YouTubeViewers.EntityFramework/DTOs/YouTubeViewerDto.cs
Normal file
16
YouTubeViewers.EntityFramework/DTOs/YouTubeViewerDto.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace YouTubeViewers.EntityFramework.DTOs
|
||||
{
|
||||
public class YouTubeViewerDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Username { get; set; }
|
||||
public bool IsSubscribed { get; set; }
|
||||
public bool IsMember { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user