Files
WatchIt/WatchIt.Database/Model/IViewCountEntity.cs

11 lines
177 B
C#

namespace WatchIt.Database.Model;
public interface IViewCountEntity
{
#region PROPERTIES
DateOnly Date { get; set; }
long ViewCount { get; set; }
#endregion
}