Adding features; one with video, one to experiment + introduce made functionality from other project
This commit is contained in:
parent
3938dfc0eb
commit
4a2d6dfd87
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue