using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Dewdrop.Models
{
public class ModGenericModel
{
///
/// An identifier for the mod.
///
public int Id { get; set; }
///
/// The mod's name.
///
public string Name { get; set; }
///
/// The vendor identifier for the mod.
///
public string Vendor { get; set; }
///
/// The mod's version number.
///
public string Version { get; set; }
///
/// The mod's URL
///
public string Url { get; set; }
///
/// Is the mod a valid mod.
///
public bool Valid { get; set; } = true;
}
}