\CayciV2Bot\CayciV2Bot\Models\Music.cs
Return Back
using System;
using System.Collections.Generic;
namespace CayciV2Bot.Models
{
public class Music
{
public int Id { get; set; }
public string Title { get; set; }
public string VideoFullName { get; set; }
public string Author { get; set; }
public int? Duration { get; set; }
public string URL { 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 Music
{
public int Id { get; set; }
public string Title { get; set; }
public string VideoFullName { get; set; }
public string Author { get; set; }
public int? Duration { get; set; }
public string URL { get; set; }
public DateTime CreationDate { get; set; }
public Guid UniqueId { get; set; }
public virtual ICollection<Log> Log { get; set; }
}
}