/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Items/IniSectionDataItem.cs
17 строк
415 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 using System.Collections.Immutable; namespace Files.App.Data.Items { /// <summary> /// Represents item of ini file's section. /// </summary> public class IniSectionDataItem { public string SectionName { get; set; } = ""; public IDictionary<string, string> Parameters { get; set; } = ImmutableDictionary<string, string>.Empty; } }