This repository has been archived on 2023-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
gswi-server/gswi.Model/DTOs/UserDTO.cs

14 lines
275 B
C#
Raw Normal View History

2022-02-20 19:04:11 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace gswi.Model.DTOs
{
public abstract class UserDTO
{
public long Id { get; set; }
public string Name { get; set; }
public bool NotifyWhenLogin { get; set; }
}
}