mirror of
https://github.com/AndnixSH/APKToolGUI.git
synced 2026-05-04 11:02:27 +00:00
1880b592f4
Apk merging is based on https://github.com/shadow578/ApksMerger
19 lines
463 B
C#
19 lines
463 B
C#
using APKSMerger.AndroidRes.Model.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace APKSMerger.AndroidRes.Model
|
|
{
|
|
public sealed class AndroidString : AndroidResource
|
|
{
|
|
//[XmlAttribute("formatted")]
|
|
//public bool Formatted { get; set; }
|
|
|
|
//[XmlAttribute("translatable")]
|
|
//public bool Translateable { get; set; }
|
|
|
|
// [XmlText]
|
|
//[XmlAttribute("value")]
|
|
public string Value { get; set; }
|
|
}
|
|
}
|