Add a few nullabilities and DCC excludes

This commit is contained in:
smoogipoo
2021-10-13 12:51:41 +09:00
parent e468bfb31c
commit cf10239e70
6 changed files with 15 additions and 3 deletions

View File

@ -3,15 +3,17 @@
using osu.Game.Models;
#nullable enable
namespace osu.Game.Database
{
/// <summary>
/// Represent a join model which gives a filename and scope to a <see cref="File"/>.
/// Represents a join model which gives a filename and scope to a <see cref="File"/>.
/// </summary>
public interface INamedFile
{
public string Filename { get; set; }
string Filename { get; set; }
public RealmFile File { get; set; }
RealmFile File { get; set; }
}
}