using System; using QuizPleaseTest.Common.UI; using UniRx; namespace QuizPleaseTest.Boot.UI { public class LoadingUIViewModel : IUIViewModel { public IReadOnlyReactiveProperty Progress { get; } public LoadingUIViewModel(IReadOnlyReactiveProperty progress) { Progress = progress ?? throw new ArgumentNullException(nameof(progress)); } } }