ShopPlatform.Web 1.0.0.0
농산물, 소프트웨어 라이선스와 개발 용역을 직접 판매하는 CodeMaru 직영 쇼핑몰입니다.
로딩중...
검색중...
일치하는것 없음
ShopCustomerProfile.cs
이 파일의 문서화 페이지로 가기
1namespace ShopPlatform.Models;
2
11public sealed class ShopCustomerProfile
12{
21 public string UserId { get; set; } = string.Empty;
30 public string Provider { get; set; } = string.Empty;
39 public string Email { get; set; } = string.Empty;
48 public string DisplayName { get; set; } = string.Empty;
57 public string Name { get; set; } = string.Empty;
66 public string Phone { get; set; } = string.Empty;
75 public string Address { get; set; } = string.Empty;
84 public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
85}