2023-07-19 21:01:19 +08:00

37 lines
882 B
C#

using SQLite;
namespace Blahblah.FlowerApp.Data.Model;
[Table("photos")]
public class PhotoItem
{
[Column("pid"), PrimaryKey, NotNull]
public int Id { get; set; }
[Column("uid"), NotNull]
public int OwnerId { get; set; }
[Column("fid"), NotNull]
public int FlowerId { get; set; }
[Column("rid"), NotNull]
public int RecordId { get; set; }
[Column("filetype"), NotNull]
public string FileType { get; set; } = null!;
[Column("filename"), NotNull]
public string FileName { get; set; } = null!;
[Column("path"), NotNull]
public string Path { get; set; } = null!;
[Column("dateupload"), NotNull]
public long DateUploadUnixTime { get; set; }
public DateTimeOffset DateUpload => DateTimeOffset.FromUnixTimeMilliseconds(DateUploadUnixTime);
[Column("url")]
public string Url { get; set; } = null!;
}