Adding features; one with video, one to experiment + introduce made functionality from other project

This commit is contained in:
Kira Jiroux 2025-02-17 12:08:43 -05:00
parent 3938dfc0eb
commit 4a2d6dfd87
2 changed files with 35 additions and 0 deletions

View File

@ -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;
}
}

View File

@ -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; }
}
}