iPackage/NugetTest.AspCore/Models/Article.cs

17 lines
391 B
C#
Raw Permalink Normal View History

2021-01-15 18:08:14 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using iPackage.Models.Entity;
namespace NugetTest.AspCore.Models
{
public class Article : ApiEntity
{
public int ArticleId { get; set; }
public string Content { get; set; }
public int PersonId { get; set; }
public Person Person { get; set; }
}
}