/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Items/OpenSourceLibraryItem.cs
32 строки
812 B
yair100
Code Quality: Updated headers
01 июл 2026, 06:18
01 июл 2026, 06:18
c27305a
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 namespace Files.App.Data.Items { /// <summary> /// Represents an item for open source library shown on <see cref="Views.Settings.AboutPage"/>. /// </summary> public class OpenSourceLibraryItem { /// <summary> /// Gets the URL that navigates to the open source library. /// </summary> public string Url { get; } = ""; /// <summary> /// Gets the name of the open source library. /// </summary> public string Name { get; } = ""; /// <summary> /// Initializes an instance of <see cref="OpenSourceLibraryItem"/> class. /// </summary> /// <param name="url">The URL</param> /// <param name="name">The name</param> public OpenSourceLibraryItem(string url, string name) { Url = url; Name = name; } } }