WeddingPlatform.Web 1.0.0.0
지도, 갤러리, 방명록, 계좌 안내와 배경음악을 링크 하나에 담는 무료 모바일 청첩장 서비스입니다.
로딩중...
검색중...
일치하는것 없음
GuestbookEntry.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class GuestbookEntry
12{
21 public string Name { get; set; } = "";
30 public string Contact { get; set; } = "";
39 public string Message { get; set; } = "";
48 public DateTime CreatedLocal { get; set; } = DateTime.Now;
49}
50
59public sealed class GuestbookEntryView
60{
69 public string Name { get; init; } = "";
78 public string Message { get; init; } = "";
87 public DateTime CreatedLocal { get; init; }
88}