1
0
mirror of synced 2025-01-10 04:01:46 +01:00

10 lines
222 B
C#
Raw Normal View History

namespace SharedProject.Models;
public class UserCredential
{
public uint Baid { get; set; }
public string Password { get; set; } = string.Empty;
public string Salt { get; set; } = string.Empty;
}