mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 05:27:51 +08:00
33 lines
954 B
C#
33 lines
954 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class SkinInfo : IHasFiles<SkinFileInfo>, IEquatable<SkinInfo>, IHasPrimaryKey, ISoftDelete
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Hash { get; set; }
|
|
|
|
public string Creator { get; set; }
|
|
|
|
public List<SkinFileInfo> Files { get; set; }
|
|
|
|
public bool DeletePending { get; set; }
|
|
|
|
public string FullName => $"\"{Name}\" by {Creator}";
|
|
|
|
public static SkinInfo Default { get; } = new SkinInfo { Name = "osu!lazer", Creator = "team osu!" };
|
|
|
|
public bool Equals(SkinInfo other) => other != null && ID == other.ID;
|
|
|
|
public override string ToString() => FullName;
|
|
}
|
|
}
|