diff --git a/Portfolio.Domain/Articles/Article.cs b/Portfolio.Domain/Articles/Article.cs new file mode 100644 index 0000000..7cb2a81 --- /dev/null +++ b/Portfolio.Domain/Articles/Article.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Portfolio.Domain.Articles +{ + public class Article + { + public int Id { get; set; } + public required string Title { get; set; } + public string? Content { get; set; } + public DateTime DatePublished { get; set; } = DateTime.Now; + public bool IsPublished { get; set; } = false; + } +} diff --git a/Portfolio.Domain/Pokemon/Pokemon.cs b/Portfolio.Domain/Pokemon/Pokemon.cs new file mode 100644 index 0000000..2661353 --- /dev/null +++ b/Portfolio.Domain/Pokemon/Pokemon.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Portfolio.Domain.Pokemon +{ + public class Pokemon + { + public int Id { get; set; } + public string PokemonId { get; set; } + public string PokemonName { get; set; } + public string SleepType { get; set; } + public string Speciality { get; set; } + + } +}