TitleUpdateMetadata.cs
1 using System.Collections.Generic; 2 3 namespace Ryujinx.Common.Configuration 4 { 5 public struct TitleUpdateMetadata 6 { 7 public string Selected { get; set; } 8 public List<string> Paths { get; set; } 9 } 10 }
1 using System.Collections.Generic; 2 3 namespace Ryujinx.Common.Configuration 4 { 5 public struct TitleUpdateMetadata 6 { 7 public string Selected { get; set; } 8 public List<string> Paths { get; set; } 9 } 10 }