Archived
Added first app template
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user