AutoDispatching/AutoDispathingWork/Dto/LoginResult.cs
2023-11-14 22:54:12 +08:00

7 lines
142 B
C#

namespace WorkerService1.Dto;
public class LoginResult
{
public string? Token { get; set; }
public string? Message { get; set; }
}