17 lines
No EOL
311 B
C#
17 lines
No EOL
311 B
C#
namespace JellyGlass.Models;
|
|
|
|
public class ServerDTO
|
|
{
|
|
public ServerDTO() { }
|
|
|
|
public ServerDTO(Server s)
|
|
{
|
|
Owner = s.Owner;
|
|
Url = s.Url;
|
|
Id = s.Id;
|
|
}
|
|
|
|
public string Owner { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
public string Id { get; set; } = string.Empty;
|
|
} |