Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Wordpress/WPUser.cs

15 lines
409 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity.Wordpress
{
public class WPUser
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
2018-10-22 01:13:42 +02:00
public string WPUserLogin { get; set; }
public string WPMail { get; set; }
public virtual IEnumerable<WPBooking> WPBookings { get; set; }
}
}