mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
13 lines
244 B
C#
13 lines
244 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|||
|
|
{
|
|||
|
|
public class Contributor
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string Link { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|