Add project files.
This commit is contained in:
8
JSMR.Application/Integrations/Cien/Models/CienArticle.cs
Normal file
8
JSMR.Application/Integrations/Cien/Models/CienArticle.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace JSMR.Application.Integrations.Cien.Models;
|
||||
|
||||
public class CienArticle
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public required string Title { get; set; }
|
||||
public required DateTime ReleasedAt { get; set; }
|
||||
}
|
||||
10
JSMR.Application/Integrations/Cien/Models/CienCreator.cs
Normal file
10
JSMR.Application/Integrations/Cien/Models/CienCreator.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace JSMR.Application.Integrations.Cien.Models;
|
||||
|
||||
public class CienCreator
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public required string Name { get; set; }
|
||||
public string? Rating { get; set; }
|
||||
public string? Icon { get; set; }
|
||||
public CienArticle[] Articles { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user