forked from AcaMate/AcaMate_Web
1. 로그인 동작을 위해서 viewmodel 로 관련 뷰에서 동작할 모든 로직을 viewmodel에서 관리 1.1. view 와 viewmodel의 관계는 1:N으로 동작하는것을 기반으로 두고 있음 2. API 접근하는 방식도 웹만의 접근 방법에서 수정 3. 로그인 동작 정보 받는 로직 수정
14 lines
429 B
C#
14 lines
429 B
C#
namespace Front.Program.Models;
|
|
|
|
public class UserData
|
|
{
|
|
public string Uid { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public DateTime? Birth { get; set; }
|
|
public string Type { get; set; } = string.Empty;
|
|
public string? DeviceId { get; set; }
|
|
public bool AutoLoginYn { get; set; }
|
|
public DateTime LoginDate { get; set; }
|
|
public string? PushToken { get; set; }
|
|
}
|