\CayciV2Bot\CayciV2Bot\Models\DiscordUser.cs
Return Back
using System;
using System.Collections.Generic;
namespace CayciV2Bot.Models
{
public class DiscordUser
{
public int Id { get; set; }
public string Username { get; set; }
public string Discriminator { get; set; }
public ulong DiscordId { get; set; }
public DateTime JoinDate { get; set; }
public DateTime CreationDate { get; set; }
public Guid UniqueId { get; set; }
public virtual ICollection<Log> Log { get; set; }
}
}
using System.Collections.Generic;
namespace CayciV2Bot.Models
{
public class DiscordUser
{
public int Id { get; set; }
public string Username { get; set; }
public string Discriminator { get; set; }
public ulong DiscordId { get; set; }
public DateTime JoinDate { get; set; }
public DateTime CreationDate { get; set; }
public Guid UniqueId { get; set; }
public virtual ICollection<Log> Log { get; set; }
}
}