14 lines
275 B
C#
14 lines
275 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|