Add project files.
This commit is contained in:
12
OfflineDemo/Models/ShortsModel.cs
Normal file
12
OfflineDemo/Models/ShortsModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace OfflineDemo.Models;
|
||||
|
||||
public class ShortsModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Hashtags { get; set; }
|
||||
public string Mp4FileUrl { get; set; }
|
||||
public string ImageFileUrl { get; set; }
|
||||
public bool IsUploaded { get; set; } = false;
|
||||
}
|
||||
Reference in New Issue
Block a user