diff --git a/FreeTubeSync/Model/Subscription.cs b/FreeTubeSync/Model/Subscription.cs index 6f026b6..7f330c9 100644 --- a/FreeTubeSync/Model/Subscription.cs +++ b/FreeTubeSync/Model/Subscription.cs @@ -10,4 +10,10 @@ public class Subscription public required string id { get; set; } public required string name { get; set; } public string? thumbnail { get; set; } + + public void Update(Subscription other) + { + name = other.name; + thumbnail = other.thumbnail; + } } \ No newline at end of file