12 lines
257 B
C#
12 lines
257 B
C#
// User.cs в LocalData/Entity
|
|
using System;
|
|
|
|
namespace Demo.Data.LocalData.Entity
|
|
{
|
|
public class User
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string FIO { get; set; } = string.Empty;
|
|
public int GroupID { get; set; }
|
|
}
|
|
} |