web-app-template/backend/app/app.Model/DTOs/UserDTO.cs
2022-02-20 13:57:55 +01:00

14 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace app.Model.DTOs
{
public abstract class UserDTO
{
public long Id { get; set; }
public string Name { get; set; }
public bool NotifyWhenLogin { get; set; }
}
}