Remove unnecessary `public` prefix in interface specification

This commit is contained in:
Dean Herbert 2021-08-17 16:22:12 +09:00
parent 82eddeffef
commit 6ee6a46894
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ public interface ILocalUserPlayInfo
/// <summary>
/// Whether the local user is currently playing.
/// </summary>
public IBindable<bool> IsPlaying { get; }
IBindable<bool> IsPlaying { get; }
}
}