namespace ColdMint.scripts.contribute;
///
/// Contributor information
/// 贡献者数据
///
public class ContributorData
{
///
/// Contributor's name
/// 贡献者的名字
///
public string? Name { get; set; }
///
/// Links to contributors' home pages
/// 贡献者的主页链接
///
public string? Url { get; set; }
///
/// ToolTip
/// 工具提示
///
public string? ToolTip { get; set; }
///
/// Type of contribution
/// 贡献的类型
///
public ContributorType[]? ContributorTypes { get; set; }
}