Test WPF Desktop App with Caliburn And RestSharp
This commit is contained in:
15
LaDOSE.Src/LaDOSE.DTO/ApplicationUser.cs
Normal file
15
LaDOSE.Src/LaDOSE.DTO/ApplicationUser.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
namespace LaDOSE.DTO
|
||||
{
|
||||
public class ApplicationUser
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
|
||||
public string Token { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
9
LaDOSE.Src/LaDOSE.DTO/Game.cs
Normal file
9
LaDOSE.Src/LaDOSE.DTO/Game.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace LaDOSE.DTO
|
||||
{
|
||||
public class Game
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string ImgUrl { get; set; }
|
||||
}
|
||||
}
|
||||
7
LaDOSE.Src/LaDOSE.DTO/LaDOSE.DTO.csproj
Normal file
7
LaDOSE.Src/LaDOSE.DTO/LaDOSE.DTO.csproj
Normal file
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
17
LaDOSE.Src/LaDOSE.DTO/WPEvent.cs
Normal file
17
LaDOSE.Src/LaDOSE.DTO/WPEvent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LaDOSE.DTO
|
||||
{
|
||||
public class WPEvent
|
||||
{
|
||||
|
||||
// Id, Name, Slug, Date
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Slug { get; set; }
|
||||
public DateTime? Date { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user