mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
9 lines
207 B
C#
9 lines
207 B
C#
namespace Cicm.Database.Models
|
|
{
|
|
public class Admin
|
|
{
|
|
public int Id { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
} |