Families.Web 1.0.0.0
사진, 동영상, 글, 댓글과 반응을 가족끼리만 공유하는 비공개 앨범·타임라인 서비스입니다.
로딩중...
검색중...
일치하는것 없음
PostEntry.cs
이 파일의 문서화 페이지로 가기
1namespace FamiliesApp.Models;
2
11public enum MediaPosition
12{
22
32}
33
42public sealed class PostEntry
43{
52 public string Id { get; set; } = Guid.NewGuid().ToString("N");
61 public string Title { get; set; } = "";
70 public string Content { get; set; } = "";
79 public DateTime PostedAt { get; set; } = DateTime.Now;
88 public string AlbumId { get; set; } = "";
97 public List<string> PhotoFileNames { get; set; } = new();
106 public List<string> VideoFileNames { get; set; } = new();
115 public bool IsPinned { get; set; } = false;
124 public MediaPosition MediaPosition { get; set; } = MediaPosition.Bottom;
125}
List< string > PhotoFileNames
Definition PostEntry.cs:97
List< string > VideoFileNames
Definition PostEntry.cs:106