initial load
This commit is contained in:
24
YouTubeViewers.Domain/Models/YouTubeViewer.cs
Normal file
24
YouTubeViewers.Domain/Models/YouTubeViewer.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace YouTubeViewers.Domain.Models
|
||||
{
|
||||
public class YouTubeViewer
|
||||
{
|
||||
public YouTubeViewer(Guid id, string username, bool isSubscribed, bool isMember)
|
||||
{
|
||||
Id = id;
|
||||
Username = username;
|
||||
IsSubscribed = isSubscribed;
|
||||
IsMember = isMember;
|
||||
}
|
||||
|
||||
public Guid Id { get; }
|
||||
public string Username { get; }
|
||||
public bool IsSubscribed { get; }
|
||||
public bool IsMember { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user