From 4a2d6dfd87904c80746f4a1e81bdc2f2b6bf76fc Mon Sep 17 00:00:00 2001 From: Kira Jiroux Date: Mon, 17 Feb 2025 12:08:43 -0500 Subject: [PATCH] Adding features; one with video, one to experiment + introduce made functionality from other project --- Portfolio.Domain/Articles/Article.cs | 17 +++++++++++++++++ Portfolio.Domain/Pokemon/Pokemon.cs | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 Portfolio.Domain/Articles/Article.cs create mode 100644 Portfolio.Domain/Pokemon/Pokemon.cs 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; } + + } +}